home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
shftrele.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
933b
|
22 lines
/* RCSVER $Id: shftrele.sql,v 1.1 1999-02-25 14:55:54-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: shftrele.sql
* Date: 02/23/1999
* memo: Randy Wood
* Description: Create the shftrele table. shftrele contains information
* from the relief end shift farebox record.
* Changes:
************************************************************************* */
CREATE TABLE shftrele
(
det_seq_num NUMBER(38) /* pointer to mstrrec record */
CONSTRAINT ref1_shftrele REFERENCES mstrrec(det_seq_num),
farebox_glid NUMBER(38), /* Farebox ID from global_id */
conv_date DATE, /* Date for this record */
shift_seq NUMBER(38), /* Shift sequence number */
user_id NUMBER(38), /* ID of operator */
CONSTRAINT pk_shftrele PRIMARY KEY (det_seq_num)
);